home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…stman Always Clicks Twice / ADC Developer CD (1993-01) (''The Postman Always Clicks Twice'')_iso / Dev.CD 199301.iso / Development Platforms / Apple II / Essentials / APW Interfaces / AInclude / E16.Locator < prev    next >
Encoding:
Text File  |  1992-01-24  |  2.1 KB  |  80 lines  |  [TEXT/MPS ]

  1. ; File:  E16.Locator
  2. ;
  3. ;
  4. ; Copyright Apple Computer, Inc. 1986-92
  5. ; All Rights Reserved
  6. ;
  7. ;
  8. toolNotFoundErr GEQU $0001
  9. funcNotFoundErr GEQU $0002
  10. sysStrtMtErr GEQU $0100 ; can't mount system startup volume
  11. tlBadRecFlag GEQU $0103 ; StartStop record invalid
  12. tlCantLoad GEQU $0104 ; A tool cannot be loaded
  13. toolVersionErr GEQU $0110
  14. messNotFoundErr GEQU $0111
  15. messageOvfl GEQU $0112 ; No message numbers available
  16. nameTooLong GEQU $0113 ; Message name too long
  17. reqNotAccepted GEQU $0120 ;SendRequest request not accepted
  18. duplicateName GEQU $0121 ;duplicate name for AcceptRequests
  19. invalidSendRequest GEQU $0122 ;bad combo of target and sendHow
  20.  
  21. fileInfoType GEQU $0001 ; Message type parameter
  22. addMessage GEQU $0001 ; action parameter
  23. getMessage GEQU $0002 ; action parameter
  24. deleteMessage GEQU $0003 ; action parameter
  25. fileInfoTypeGS GEQU $0011 ; Message Type parameter
  26.  
  27. ; GetMsgHandle flags values
  28. gmhByIndex GEQU 0
  29. gmhByType GEQU 1
  30. gmhByName GEQU 2
  31.  
  32. ; SendRequest/AcceptRequests codes
  33. systemSaysBeep GEQU $0001 ;used by SysBeep2
  34. systemSaysUnknownDisk GEQU $0002 ;used by HandleDiskInsert
  35. srqGoAway GEQU $0003
  36. srqGetrSoundSample GEQU $0004
  37. srqSynchronize GEQU $0005
  38. srqPlayrSoundSample GEQU $0006
  39. systemSaysNewDeskMsg GEQU $0008
  40. systemSaysEjectingDev GEQU $000E
  41. systemSaysDeskStartUp GEQU $0502
  42. systemSaysDeskShutDown GEQU $0503
  43. systemSaysFixedAppleMenu GEQU $051E
  44. systemSaysMenuKey GEQU $0F01
  45.  
  46. ; SendRequest sendHow values
  47. stopAfterOne GEQU $8000
  48. sendToAll GEQU 0
  49. sendToName GEQU 1
  50. sendToUserID GEQU 2
  51.  
  52. ; StartUpTools flag bits
  53. leaveScreenClean GEQU $0004
  54. openResAsAllowed GEQU $0008
  55. noResourceMgr GEQU $0010 ;for ShutDownTools, too
  56.  
  57. mvReturn GEQU $0001 ; like ok for dialogs
  58. mvEscape GEQU $0002 ; like cancel for dialogs
  59. sysTool GEQU $0000
  60. userTool GEQU $8000
  61.  
  62. ; offset constants for MessageRec and MessageRecGS
  63. omessageNext GEQU 0
  64. omessageType GEQU 4
  65. omessageData GEQU 6
  66. omessagePrintFlag GEQU 6
  67. ofileNames GEQU 8
  68.  
  69. ; offset constants for ToolSpec
  70. otoolNumber GEQU 0
  71. ominVersion GEQU 2
  72.  
  73. ; offset constants for StartStopRecord
  74. oflags GEQU 0
  75. ovideoMode GEQU 2
  76. oresFileID GEQU 4
  77. odPageHandle GEQU 6
  78. onumTools GEQU 10
  79. otheTools GEQU 12
  80.